/* banner */
.banner_box {
	 width: 100%;
	 height: auto;
	 min-height:527px;
	 background:url("../images/banner/banner1.jpg") no-repeat;
	 background-size:cover;
	 line-height: 5;
	 text-align: center;
	 font-size: 5em;
	 color: #fff;
	 text-transform: capitalize;
	 vertical-align: middle;
}
.pro_banner_box {
	 width: 100%;
	 height: auto;
	 min-height:300px;
	 background:url("../images/index_pic6.jpg") no-repeat center;
	 line-height: 5;
	 text-align: center;
	 font-size: 5em;
	 color: #fff;
	 text-transform: capitalize;
	 vertical-align: middle;
}

.slider {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}
/*盒子带容器*/
.slides {
	height: auto;
	/* Simple clear fix */
	overflow: hidden;
	/**	
		 * Prevent blinking issue
		 * Not tested. Experimental.
		 */
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	/**
		 * Here is CSS transitions 
		 * responsible for slider animation in modern broswers
		 */
	-webkit-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-ms-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.slide {
	height: auto;
	float: left;
	clear: none;
}
.slider-arrows {
}
.slider-arrow {
	position: absolute;
	display: block;
	margin-bottom: -20px;
	width: 40px;
	height: 75px;
	line-height: 40px;
	text-decoration: none;
}/*左右按钮样式及放置位置*/
.slider-arrow--right {
	bottom: 50%;
	right: 30px;
	background:url("../images/next.png") no-repeat;
	background-size:cover;
}
.slider-arrow--left {
	bottom: 50%;
	left: 30px;
	background:url("../images/prev.png") no-repeat;
	background-size:cover;
}
/*
background:url(img/.png) no-repeat;
*/

.slider-nav {
	position: absolute;
	bottom: 10px;
}
.slider-nav__item {  /*nva样式*/
	width: 12px;
	height: 12px;
	float: left;
	clear: none;
	display: block;
	margin: 0 5px;
	background: black;
	border-radius: 100%;
}
.slider-nav__item:hover {
	background: #ccc;
}
.slider-nav__item--current {
	background: #ccc;
} /*被选中后的样式*/